/* This procedure returns all of the billing categories available for the user to select.
NOTE:
While this procedure may return an empty resultset, you MUST have the CODE and DESCRIPTION columns. The billing categories come from the General Lookup table in iMIS. */ CREATEPROCEDURE[dbo].[BAEBillingBillingCategories] @UserIDASvarchar(10), @MemberTypeASvarchar(5) AS SELECTCODE,DESCRIPTIONFROMGen_TablesWHERETABLE_NAME='CATEGORY';